home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC / src / sockimpl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.1 KB  |  37 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. // Note: must include AFXDB.H first
  12.  
  13. #if !defined(_WIN32_WCE_NO_WINSOCK)
  14. #undef AFX_DATA
  15. #define AFX_DATA AFX_NET_DATA
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // _AFX_SOCK_STATE
  19.  
  20. #undef AFX_DATA
  21. #define AFX_DATA
  22.  
  23. class _AFX_SOCK_STATE : public CNoTrackObject
  24. {
  25. public:
  26.     DWORD m_dwReserved1;    // reserved for version 4.1 only
  27.     void (AFXAPI *m_pfnSockTerm)(void); // set once initialized
  28.     virtual ~_AFX_SOCK_STATE();
  29. };
  30.  
  31. EXTERN_PROCESS_LOCAL(_AFX_SOCK_STATE, _afxSockState)
  32.  
  33. #undef AFX_DATA
  34. #define AFX_DATA
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. #endif // _WIN32_WCE_NO_WINSOCK